public class long[]
extends Object
GDK enhancements for long[].
| Type Params | Return Type | Name and description |
|---|---|---|
|
public boolean |
any(Closure<?> predicate)Iterates over the contents of a long Array, and checks whether a predicate is valid for at least one element. |
|
public boolean |
asBoolean()Coerces a long array to a boolean value. |
|
public BigDecimal |
average()Calculates the average of the longs in the array. |
|
public List<List<Long>> |
chop(int chopSizes)Chops the long array into pieces, returning lists with sizes corresponding to the supplied chop sizes. |
|
public boolean |
contains(Object value)Checks whether the array contains the given value. |
|
public Number |
count(Object value)Counts the number of occurrences of the given value inside this array. |
|
public long[] |
each(LongConsumer consumer)Iterates through a long[] passing each long to the given consumer. |
|
public long[] |
eachWithIndex(Closure<?> closure)Iterates through a long[], passing each long and the element's index (a counter starting at zero) to the given closure. |
|
public boolean |
equals(long[] right)Compares the contents of this array to the contents of the given array. |
|
public boolean |
every(Closure<?> predicate)Iterates over the contents of a long Array, and checks whether a predicate is valid for all elements. |
|
public long |
first()Returns the first item from the long array. |
|
public List<Long> |
flatten()Flattens an array. |
|
public List<Long> |
getAt(Range<?> range)Supports the subscript operator for a long array with a range giving the desired indices. |
|
public List<Long> |
getAt(IntRange range)Supports the subscript operator for a long array with an IntRange giving the desired indices. |
|
public List<Long> |
getAt(ObjectRange range)Supports the subscript operator for a long array with an ObjectRange giving the desired indices. |
|
public List<Long> |
getAt(Collection<?> indices)Supports the subscript operator for a long array with a (potentially nested) collection giving the desired indices. |
|
public IntRange |
getIndices()Returns indices of the long array. |
|
public String |
groovyToString()Returns Groovy's list-like string representation for a long array. |
|
public long |
head()Returns the first item from the long array. |
|
public Map<Integer, Long> |
indexed()Zips a long[] with indices in (index, value) order starting from index 0. |
|
public Map<Integer, Long> |
indexed(int offset)Zips a long[] with indices in (index, value) order starting from a given index. |
|
public long[] |
init()Returns the items from the long array excluding the last item. |
|
public String |
join()Concatenates the string representation of each item in this array. |
|
public String |
join(String separator)Concatenates the string representation of each item in this array, with the given String as a separator between each item. |
|
public long |
last()Returns the last item from the long array. |
|
public LongStream |
longStream()Returns a sequential LongStream with the specified array as its source. |
|
public long |
max()Adds max() method to long arrays. |
|
public long |
max(LongComparator comparator)Selects the maximum value found from the long array using the supplied LongBinaryOperator as a comparator to determine the maximum of any two values. |
|
public long |
max(LongUnaryOperator operator)Selects the maximum value found from the long array using the supplied LongUnaryOperator to determine the maximum of any two values. |
|
public long |
maxComparing(Comparator<Long> comparator)Selects the maximum value found from the long array using the comparator to determine the maximum of any two values. |
|
public long |
min()Adds min() method to long arrays. |
|
public long |
min(LongComparator comparator)Selects the minimum value found from the long array using the supplied LongComparator to determine the minimum of any two values. |
|
public long |
min(LongUnaryOperator operator)Selects the minimum value found from the long array using the supplied LongUnaryOperator to determine the minimum of any two values. |
|
public long |
minComparing(Comparator<Long> comparator)Selects the minimum value found from the long array using the comparator to determine the minimum of any two values. |
|
public int |
partitionPoint(IntRange range, LongPredicate condition)Returns the index of the partition point according to the given predicate (the index of the first element of the second partition). |
|
public int |
partitionPoint(LongPredicate condition)Returns the index of the partition point according to the given predicate (the index of the first element of the second partition). |
|
public void |
putAt(IntRange range, long[] source)A helper method to allow arrays to be set with subscript operators. |
|
public void |
putAt(IntRange range, Iterable<Number> source)A helper method to allow arrays to be set with subscript operators. |
|
public long[] |
reverse()Creates a new long array containing items which are the same as this array but in reverse order. |
|
public long[] |
reverse(boolean mutate)Reverses the items in an array. |
|
public long[] |
reverseEach(Closure<?> closure)Iterates through a long[] in reverse order passing each long to the given closure. |
|
public int |
size()Provides arrays with a size method similar to collections. |
|
public Stream<Long> |
stream()Returns a sequential Stream with the specified array as its source. |
|
public long |
sum()Sums the items in an array. |
|
public long |
sum(LongUnaryOperator operator)Calculates the sum of values found from applying the operator to members of the int array. |
|
public long |
sum(long initialValue)Sums the items in an array, adding the result to some initial value. |
|
public long[] |
swap(int i, int j)Swaps two elements at the specified positions. |
|
public long[] |
tail()Returns the items from the long array excluding the first item. |
|
public List<Long> |
toList()Converts this array to a List of the same size, with each element added to the list. |
|
public Set<Long> |
toSet()Converts this array to a Set, with each unique element added to the set. |
|
public String |
toString()Returns the string representation of the given array. |
|
public List<Tuple2<Long, Integer>> |
withIndex()Zips a long array with indices in (value, index) order. |
|
public List<Tuple2<Long, Integer>> |
withIndex(int offset)Zips a long array with indices in (value, index) order starting from a given index. |
|
public List<Tuple2<Long, Long>> |
zip(long[] other)A list of all the pairs from two arrays. |
|
public Iterator<Tuple2<Long, Long>> |
zipping(long[] other)An iterator of all the pairs from two arrays. |
| Methods inherited from class | Name |
|---|---|
class Object |
addShutdownHook, any, any, asBoolean, asType, collect, collect, collect, dump, each, eachMatch, eachMatch, eachWithIndex, every, every, find, find, findAll, findAll, findIndexOf, findIndexOf, findIndexValues, findIndexValues, findLastIndexOf, findLastIndexOf, findResult, findResult, findResult, findResult, getAt, getMetaClass, getMetaPropertyValues, getProperties, grep, grep, hasProperty, identity, inject, inject, inspect, invokeMethod, is, isCase, isNotCase, iterator, metaClass, print, print, printf, printf, println, println, println, putAt, respondsTo, respondsTo, setMetaClass, sleep, sleep, split, sprintf, sprintf, stream, tap, toString, use, use, use, with, with, withCloseable, withCloseable, withMethodClosure, withStream, withStream, withTraits |
Iterates over the contents of a long Array, and checks whether a predicate is valid for at least one element.
long[] array = [0L, 1L, 2L]
assert array.any{ it > 1L }
assert !array.any{ it > 3L }
predicate - the closure predicate used for matchingCoerces a long array to a boolean value. A long array is false if the array is of length 0, and true otherwise.
Calculates the average of the longs in the array.
assert 5.0G == ([2,4,6,8] as long[]).average()
Chops the long array into pieces, returning lists with sizes corresponding to the supplied chop sizes. If the array isn't large enough, truncated (possibly empty) pieces are returned. Using a chop size of -1 will cause that piece to contain all remaining items from the array.
long[] array = [0, 1, 2]
assert array.chop(1, 2) == [[0], [1, 2]]
chopSizes - the sizes for the returned piecesChecks whether the array contains the given value.
value - the value being searched for Counts the number of occurrences of the given value inside this array.
Comparison is done using Groovy's == operator (using
compareTo(value) == 0).
long[] array = [10L, 20L, 20L, 30L]
assert array.count(20L) == 2
value - the value being searched forIterates through a long[] passing each long to the given consumer.
long[] array = [0L, 1L, 2L]
String result = ''
array.each{ result += it }
assert result == '012'
consumer - the consumer for each longIterates through a long[], passing each long and the element's index (a counter starting at zero) to the given closure.
long[] array = [10L, 20L, 30L]
String result = ''
array.eachWithIndex{ item, index -> result += "$index($item)" }
assert result == '0(10)1(20)2(30)'
closure - a Closure to operate on each longCompares the contents of this array to the contents of the given array.
Example usage:
long[] array1 = [4L, 8L]
long[] array2 = [4L, 8L]
assert array1 !== array2
assert array1.equals(array2)
right - the array being comparedIterates over the contents of a long Array, and checks whether a predicate is valid for all elements.
long[] array = [0L, 1L, 2L]
assert array.every{ it < 3L }
assert !array.every{ it > 1L }
predicate - the closure predicate used for matchingReturns the first item from the long array.
long[] longs = [2L, 4L, 6L]
assert longs.first() == 2L
An alias for head(). Flattens an array. This array is added to a new collection.
It is an alias for toList() but allows algorithms to be written which also
work on multidimensional arrays or non-arrays where flattening would be applicable.
long[] array = [0L, 1L]
assert array.flatten() == [0L, 1L]
Supports the subscript operator for a long array with a range giving the desired indices.
long[] array = [1L, 3L, 5L, 7L, 9L, 11L]
assert array[2..<2] == [] // EmptyRange
assert array[(0..5.5).step(2)] == [1L, 5L, 9L] // NumberRange
assert array[(1..5.5).step(2)] == [3L, 7L, 11L] // NumberRange
range - a range indicating the indices for the items to retrieveSupports the subscript operator for a long array with an IntRange giving the desired indices.
long[] array = [0L, 10L, 20L, 30L, 40L]
assert array[2..3] == [20L, 30L]
assert array[-2..-1] == [30L, 40L]
assert array[-1..-2] == [40L, 30L]
range - an IntRange indicating the indices for the items to retrieveSupports the subscript operator for a long array with an ObjectRange giving the desired indices.
long[] array = [0L, 10L, 20L, 30L, 40L]
def range = new ObjectRange(2, 3)
assert array[range] == [20L, 30L]
range - an ObjectRange indicating the indices for the items to retrieveSupports the subscript operator for a long array with a (potentially nested) collection giving the desired indices.
long[] array = [0L, 2L, 4L, 6L, 8L]
assert array[2, 3] == [4L, 6L]
assert array[1, 0..1, [0, [-1]]] == [2L, 0L, 2L, 0L, 8L]
indices - a collection of indices for the items to retrieveReturns indices of the long array.
long[] array = [0L, 1L]
assert array.indices == 0..1
Returns Groovy's list-like string representation for a long array.
If disabled, e.g. via -Dgroovy.extension.disable=groovyToString(long[]),
the JDK's default array toString() is used instead.
Returns the first item from the long array.
long[] longs = [2L, 4L, 6L]
assert longs.head() == 2L
An alias for first().Zips a long[] with indices in (index, value) order starting from index 0.
Example usage:
long[] nums = [10L, 20L, 30L]
assert [0: 10L, 1: 20L, 2: 30L] == nums.indexed()
Zips a long[] with indices in (index, value) order starting from a given index.
Example usage:
long[] nums = [10L, 20L, 30L]
assert [5: 10L, 6: 20L, 7: 30L] == nums.indexed(5)
offset - an index to start fromReturns the items from the long array excluding the last item.
long[] longs = [2L, 4L, 6L]
def result = longs.init()
assert result == [2L, 4L]
assert longs.class.componentType == result.class.componentType
Concatenates the string representation of each item in this array.
Concatenates the string representation of each item in this array, with the given String as a separator between each item.
separator - a String separatorReturns the last item from the long array.
long[] longs = [2L, 4L, 6L]
assert longs.last() == 6L
Returns a sequential LongStream with the specified array as its source.
Stream for the arrayAdds max() method to long arrays.
Example usage:
long[] nums = [1L, 3L, 2L]
assert 3L == nums.max()
Selects the maximum value found from the long array using the supplied LongBinaryOperator as a comparator to determine the maximum of any two values.
long[] nums = [10L, 20L, -30L]
assert 20L == nums.max{ n, m -> n <=> m }
assert -30L == nums.max{ n, m -> n.abs() <=> m.abs() }
comparator - a comparator, i.e. returns a negative value if the first parameter is less than the secondSelects the maximum value found from the long array using the supplied LongUnaryOperator to determine the maximum of any two values. The operator is applied to each array element and the results are compared.
long[] nums = [10L, 20L, -30L]
assert 20L == nums.max{ it }
assert -30L == nums.max{ it.abs() }
operator - an operator that returns a long used for comparing valuesSelects the maximum value found from the long array using the comparator to determine the maximum of any two values.
long[] nums = [10L, 20L, 30L]
assert 30L == nums.maxComparing(Comparator.naturalOrder())
assert 10L == nums.maxComparing(Comparator.reverseOrder())
comparator - a ComparatorAdds min() method to long arrays.
Example usage:
long[] nums = [20L, 10L, 30L]
assert 10L == nums.min()
Selects the minimum value found from the long array using the supplied LongComparator to determine the minimum of any two values.
long[] nums = [10L, -20L, 30L]
assert -20L == nums.min{ n, m -> n <=> m }
assert 10L == nums.min{ n, m -> n.abs() <=> m.abs() }
comparator - a comparator, i.e. returns a negative value if the first parameter is less than the secondSelects the minimum value found from the long array using the supplied LongUnaryOperator to determine the minimum of any two values. The operator is applied to each array element and the results are compared.
long[] nums = [10L, -20L, 30L]
assert -20L == nums.min{ it }
assert 10L == nums.min{ it.abs() }
operator - an operator that returns a long used for comparing valuesSelects the minimum value found from the long array using the comparator to determine the minimum of any two values.
long[] nums = [10L, 20L, 30L]
assert 10L == nums.minComparing(Comparator.naturalOrder())
assert 30L == nums.minComparing(Comparator.reverseOrder())
comparator - a ComparatorReturns the index of the partition point according to the given predicate (the index of the first element of the second partition). The arr is assumed to be partitioned according to the given predicate.
def arr = [7, 15, 3, 5, 4, 12, 6] as long[]
assert arr.partitionPoint(0..<arr.size()) { it%2 != 0 } == 4
def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as long[]
// usage case like lower_bound(cpp), bisect_left(python)
assert arr.partitionPoint(0..<arr.size()) { it < 4 } == 4
// usage case like upper_bound(cpp), bisect_right(python)
assert arr.partitionPoint(0..<arr.size()) { it <= 4 } == 6
// for all match condition
assert arr.partitionPoint(0..<arr.size()) { it <= 100 } == arr.size()
// for no match condition
assert arr.partitionPoint(0..<arr.size()) { it <= 0 } == 0
// for no match condition with range
assert arr.partitionPoint(2..<arr.size()) { it <= 0 } == 2
range - the range [l,r] to find data match the conditioncondition - the matching conditionReturns the index of the partition point according to the given predicate (the index of the first element of the second partition). The arr is assumed to be partitioned according to the given predicate.
def arr = [7, 15, 3, 5, 4, 12, 6] as long[]
assert arr.partitionPoint{ it%2 != 0 } == 4
def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as long[]
// usage case like lower_bound(cpp), bisect_left(python)
assert arr.partitionPoint{ it < 4 } == 4
// usage case like upper_bound(cpp), bisect_right(python)
assert arr.partitionPoint{ it <= 4 } == 6
// for all match condition
assert arr.partitionPoint{ it <= 100 } == arr.size()
// for no match condition
assert arr.partitionPoint{ it <= 0 } == 0
condition - the matching conditionA helper method to allow arrays to be set with subscript operators.
long[] from = [1L, 1L, 1L]
long[] to = [0L, 0L, 0L, 0L, 0L]
to[1..3] = from
assert to == [0L, 1L, 1L, 1L, 0L]
range - the subset of the array to setsource - the source array from which new values will comeA helper method to allow arrays to be set with subscript operators. Zero will be used if the source iterable has insufficient elements.
def from = [1L, 1L, 1L]
long[] to = [0L, 0L, 0L, 0L, 0L]
to[1..3] = from
assert to == [0L, 1L, 1L, 1L, 0L]
range - the subset of the array to setsource - the source array from which new values will comeCreates a new long array containing items which are the same as this array but in reverse order.
long[] array = 1L..2L
assert array.reverse() == 2L..1L
Reverses the items in an array. If mutate is true, the original array is modified in place and returned. Otherwise, a new array containing the reversed items is produced.
long[] array = 1L..3L
def yarra = array.reverse(true)
assert array == 3L..1L
assert yarra == 3L..1L
assert array === yarra
yarra = array.reverse(false)
assert array !== yarra
assert array == 3L..1L
assert yarra == 1L..3L
mutate - true if the array itself should be reversed in place, false if a new array should be createdIterates through a long[] in reverse order passing each long to the given closure.
long[] array = [0, 1, 2]
String result = ''
array.reverseEach{ result += it }
assert result == '210'
closure - the closure applied on each long Provides arrays with a size method similar to collections.
Returns a sequential Stream with the specified array as its source.
Stream for the arraySums the items in an array.
assert (1+2+3+4 as long) == ([1,2,3,4] as long[]).sum()
Calculates the sum of values found from applying the operator to members of the int array.
int[] nums = [10, -20, 30]
assert 20 == nums.sum{ n -> n }
assert 60 == nums.sum{ n -> n.abs() }
operator - an operator that returns a long used for summing valuesSums the items in an array, adding the result to some initial value.
assert (5+1+2+3+4 as long) == ([1,2,3,4] as long[]).sum(5)
initialValue - the items in the array will be summed to this initial valueSwaps two elements at the specified positions.
Example:
assert ([1, 3, 2, 4] as long[]) == ([1, 2, 3, 4] as long[]).swap(1, 2)
i - a positionj - a positionReturns the items from the long array excluding the first item.
long[] longs = [2L, 4L, 6L]
def result = longs.tail()
assert result == [4L, 6L]
assert longs.class.componentType == result.class.componentType
Converts this array to a List of the same size, with each element added to the list.
Converts this array to a Set, with each unique element added to the set.
long[] array = [1, 2, 3, 2, 1]
Set expected = [1, 2, 3]
assert array.toSet() == expected
Returns the string representation of the given array.
long[] array = [1, 2, 3, 2, 1]
assert array.toString() == '[1, 2, 3, 2, 1]'
Zips a long array with indices in (value, index) order.
Example usage:
long[] nums = [42L, -1L]
assert [[42L, 0], [-1L, 1]] == nums.withIndex()
assert ["0: 42", "1: -1"] == nums.withIndex().collect { n, idx -> "$idx: $n" }
Zips a long array with indices in (value, index) order starting from a given index.
Example usage:
long[] nums = [42L, -1L]
assert [[42L, 5], [-1L, 6]] == nums.withIndex(5)
assert ["5: 42", "6: -1"] == nums.withIndex(5).collect { n, idx -> "$idx: $n" }
offset - an index to start fromA list of all the pairs from two arrays.
long[] small = [1L, 2L, 3L]
long[] large = [100L, 200L, 300L]
assert [101L, 202L, 303L] == small.zip(large).collect{ a, b -> a + b }
assert [small, large].transpose() == small.zip(large)
other - another long[]An iterator of all the pairs from two arrays.
long[] small = [1L, 2L, 3L]
long[] large = [100L, 200L, 300L]
assert [101L, 202L, 303L] == small.zipping(large).collect{ a, b -> a + b }
assert [small, large].transpose() == small.zipping(large).toList()
other - another long[]